home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 with MFC / Programming Windows 95 with MFC (Microsoft Programming Series)(097-0001465)(1996).iso / CODE / Chap13 / Wanderer / MainFrame.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-05  |  609 b   |  23 lines

  1. //***********************************************************************
  2. //
  3. //  MainFrame.h
  4. //
  5. //***********************************************************************
  6.  
  7. class CMainFrame : public CFrameWnd
  8. {
  9.     DECLARE_DYNCREATE (CMainFrame)
  10.  
  11. private:
  12.     CStatusBar m_wndStatusBar;
  13.     CSplitterWnd m_wndSplitter;
  14.  
  15. protected:
  16.     virtual BOOL PreCreateWindow (CREATESTRUCT&);
  17.     virtual BOOL OnCreateClient (LPCREATESTRUCT, CCreateContext*);
  18.     virtual BOOL OnCmdMsg (UINT, int, void*, AFX_CMDHANDLERINFO*);
  19.  
  20.     afx_msg int OnCreate (LPCREATESTRUCT);
  21.     DECLARE_MESSAGE_MAP ()
  22. };
  23.